home *** CD-ROM | disk | FTP | other *** search
/ Haight-Ashbury in the Sixties / Haight-Ashbury in the Sixties (1996)(Rockument)(Disc 1 of 2)[Mac-PC].iso / mac / MAIN / MAINMENU.DIR / 00030_Script_30 < prev    next >
Text File  |  1995-05-28  |  2KB  |  70 lines

  1. On EnterFrame
  2.   
  3.   if the frame > 76 then
  4.     
  5.     if rollover(2) then nothing
  6.     
  7.     if the mousecast = the number of cast "help" then 
  8.       set the castnum of sprite 3 = 27
  9.     else
  10.       set the castnum of sprite 3 = 26
  11.     end if
  12.     
  13.     if the mousecast = the number of cast "quit" then 
  14.       set the castnum of sprite 4 = 29
  15.     else
  16.       set the castnum of sprite 4 = 28
  17.     end if
  18.     
  19.     if the mousecast = the number of cast "tune in" then 
  20.       set the castnum of sprite 5 = 32
  21.     else
  22.       set the castnum of sprite 5 = 31
  23.     end if
  24.     
  25.     if the mousecast = the number of cast "turn on" then 
  26.       set the castnum of sprite 6 = 34
  27.     else
  28.       set the castnum of sprite 6 = 33
  29.     end if
  30.     
  31.     if the mousecast = the number of cast "drop out" then 
  32.       set the castnum of sprite 7 = 36
  33.     else
  34.       set the castnum of sprite 7 = 35
  35.     end if
  36.     
  37.     if rollover(9) = true then
  38.       set the visibility of sprite 9 = false
  39.     else
  40.       set the visibility of sprite 9 = true
  41.     end if
  42.     
  43.     if rollover(11) = true then
  44.       set the visibility of sprite 11 = false
  45.     else
  46.       set the visibility of sprite 11 = true
  47.     end if
  48.     
  49.     if rollover(13) = true then
  50.       set the visibility of sprite 13 = false
  51.     else
  52.       set the visibility of sprite 13 = true
  53.     end if
  54.     
  55.     if rollover(14) = true then
  56.       set the visibility of sprite 14 = true
  57.     else
  58.       set the visibility of sprite 14 = false
  59.     end if
  60.     
  61.   end if
  62.   
  63. end enterframe
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.